public class IndentPrint {

    public static void main(String[] args) {
        indentPrint("This line is not indented", false);
        indentPrint("This line is indented five spaces", true);
    }

    // add indentPrint method here

}